Материалы по теме 'borrow checker' | DevsDay.ru

IT-блоги Материалы по теме 'borrow checker'

IT-блоги Материалы по теме 'borrow checker'


Разработка dev.to 16 мая 2024 г. 11:33

Intro I decided to learn the Rust programming language, and here's how I did it. I started by reading a book about Rust. It’s a good way to begin, but it’s not enough. You don't really learn programming just by reading a book; you have to write co...... читать далее

rust cli programming

Разработка dev.to 12 мая 2024 г. 12:49

Introduction Rust is a multi-paradigm programming language designed for Performance and safety, especially safe concurrency. Rust is syntactically similar to C++, but can guarantee memory safety by using a borrow checker to validate references. T...... читать далее

rust webdev programming softwareengineering

DevOps OpenNET 3 мая 2024 г. 17:01

Опубликован выпуск инструментария языка программирования Mojo 24.3, позволяющего компилировать проекты на локальной системе. В состав включены компоненты, необходимые для разработки приложений на языке Mojo, включая компилятор, runtime, интерактивну...... читать далее

Разработка habr.com 30 апреля 2024 г. 9:42

Предисловие: этот пост представляет собой очень длинный перечень мыслей и проблем, возникавших у меня за годы работы; также в нём рассматриваются некоторые из аргументов, которые мне часто говорили. В посте выражено моё мнение, сформировавшееся у мен...... читать далее

rust borrow checker ecs entity-component-system игровые движки

DevOps OpenNET 3 апреля 2024 г. 9:43

Разработчики языка программирования Mojo начали перевод наработок проекта в разряд открытого ПО. Первым открыт код библиотеки, который теперь доступен под лицензией Apache 2.0 c исключениями от проекта LLVM, допускающими смешивание с кодом под лиценз...... читать далее

Разработка dev.to 19 марта 2024 г. 18:30

One of the core strengths of Rust lies in its approach to memory management, particularly through its ownership system. A crucial aspect of this system is the use of references and borrowing, which allow for safe and efficient manipulation of data wi...... читать далее

rust beginners tutorial programming

Разработка dev.to 16 марта 2024 г. 18:58

I've been encouraged lately by all of the Rust and Serverless content that has been posted on various platforms. I've also been public about the fact that I believe that Rust adoption with Serverless would be further along if there was more quality...... читать далее

aws serverless rust tutorial

Разработка dev.to 21 февраля 2024 г. 9:27

I’ve been working on Prodzilla, a modern synthetic monitoring tool built in Rust. I wanted to share how it's different to existing tools, why I’ve built it in Rust and how you can host it for free on Shuttle, and what I hope to achieve in the long-te...... читать далее

rust opensource programming monitoring

Разработка dev.to 19 февраля 2024 г. 22:15

If you're poked around a few things, you know that WASM can be pretty neat. That having said, it still feels stuck in a niche, only realizing a fraction of its full potential. Consider: If you're not writing in a language specifically set up to ena...... читать далее

zig webassembly python dll

Разработка dev.to 27 января 2024 г. 16:53

Welcome to the Cognito Starter Kit with a large helping of Rust seasoned with some CDK. I'm a big believer in Cognito and the power it gives builders to customize the various signup and authentication workflows. With Cognito, you get a managed servic...... читать далее

aws serverless rust identity

Разработка dev.to 14 января 2024 г. 17:09

Rust and Lambda are new friends. Sure, there's a great deal of momentum lately around Rust but the language has been around for almost 20 years. It struggled to take off early on but has seen its adoption increase since the creation of the Rust Found...... читать далее

rust aws serverless development

Разработка dev.to 5 января 2024 г. 18:27

Things Starts changing when I started following Theprimeagen a few months back, and he Keep talking about Rust so much that I started feeling left behind. He had to mention Rust and Vim in every single video. Initial Misconceptions Init...... читать далее

rust tauri neovim programming

Разработка dev.to 21 декабря 2023 г. 22:14

I've been spending more and more time with Rust which is perfectly in line with my end-of-year planning. So far, my collection of articles is growing and so are my Rust skills. I can't profess to be more than a novice at this point, but when has that...... читать далее

aws serverless rust programming

Разработка dev.to 1 декабря 2023 г. 16:56

Strap in, folks: I stayed up until 2 AM trying to get a solution to the first challenge of this year's Advent of Code. Why? Because I decided I was going to do it in Rust, that's why. I'll just take you through my approach to the problem. I won't co...... читать далее

adventofcode rust programming learning

Разработка dev.to 11 ноября 2023 г. 21:13

Intro In Part 2, we went over the basics of borrowing and how it looks out for you. In this article we will go over the rules of lifetimes which are used by the borrow checker to ensure the owned lifetime always out lasts the borrowed lifetime...... читать далее

rust tutorial

Разработка dev.to 11 ноября 2023 г. 21:13

Intro In our last article we discussed how to avoid the borrow checker by making copies. In this article, I will introduce the concept of borrowing which allows us to avoid copying and thus increases the performance of our code. More specifically,...... читать далее

rust tutorial

Разработка habr.com 7 ноября 2023 г. 17:43

Недавно в сообществе разработчиков, где я состою, кто-то представил интересную проблему. Программа этого человека была спроектирована так, что она использовала как многопоточность для выполнения некоторых задач, и циклы for для повторения определенны...... читать далее

rust итераторы производительность Borrow Checker

Дизайн UX Planet 23 октября 2023 г. 8:52

By Mary Moore, copywriter at ShakuroIllustration by ShakuroThe ever-shifting landscape of digital innovation can feel like a relentless race, a whirlwind of challenges and opportunities. Your pains as a developer are real — the pressure to deliver cu...... читать далее

backend-development web-development development-trends trends development

Разработка dev.to 14 октября 2023 г. 7:10

Before I get to this project known as netcrab, I thought it'd be fun to share some history from Xbox's past... call it the origin story of this tool. Let's go back in time a little bit. The year was 2012 and I had joined the Xbox console operating sy...... читать далее

rust tokio networking performance

Разработка dev.to 14 сентября 2023 г. 18:25

Do you ever thought about what happens to your RAM when you run a program? And how the ways you write code can interfere with many other things in your system? That article will help you to understand more about management memory and HOW RUST WORKS...... читать далее

rust beginners programming